home *** CD-ROM | disk | FTP | other *** search
- rem This batch file will
- rem 1) assemble boot.asm
- rem 2) link it inot boot.exe
- rem 3) convert it into boot.com
- rem 4) copy it to the boot record
- rem in a diskette in drive A
- rem (be prepared for that)
- rem 5) delete extraneous files
- pause Ready?
- masm boot,boot.obj,nul,nul
- link boot,boot,con;
- exe2bin boot.exe boot.com
- debug boot.com <boot.dbg
- del boot.obj
- del boot.exe
- del boot.com